home *** CD-ROM | disk | FTP | other *** search
/ Freelog 45 / Freelog045.iso / Bas / Internet / Trellian / twp103.exe / {app} / WebPage.exe / 0 / RCDATA / TFORMIMAGEROTATE / TFORMIMAGEROTATE.txt
Text File  |  2003-02-25  |  4KB  |  168 lines

  1. object FormImageRotate: TFormImageRotate
  2.   Left = 295
  3.   Top = 213
  4.   AutoSize = True
  5.   BorderStyle = bsDialog
  6.   BorderWidth = 8
  7.   Caption = 'Image Rotate'
  8.   ClientHeight = 273
  9.   ClientWidth = 409
  10.   Color = clBtnFace
  11.   Font.Charset = DEFAULT_CHARSET
  12.   Font.Color = clWindowText
  13.   Font.Height = -11
  14.   Font.Name = 'MS Sans Serif'
  15.   Font.Style = []
  16.   OldCreateOrder = False
  17.   Position = poScreenCenter
  18.   OnCreate = FormCreate
  19.   OnDestroy = FormDestroy
  20.   PixelsPerInch = 96
  21.   TextHeight = 13
  22.   object ButtonOK: TButton
  23.     Left = 240
  24.     Top = 248
  25.     Width = 81
  26.     Height = 25
  27.     Caption = 'OK'
  28.     Default = True
  29.     ModalResult = 1
  30.     TabOrder = 0
  31.   end
  32.   object ButtonCancel: TButton
  33.     Left = 328
  34.     Top = 248
  35.     Width = 81
  36.     Height = 25
  37.     Cancel = True
  38.     Caption = 'Cancel'
  39.     ModalResult = 2
  40.     TabOrder = 1
  41.   end
  42.   object PageControl: TPageControl
  43.     Left = 0
  44.     Top = 0
  45.     Width = 409
  46.     Height = 241
  47.     ActivePage = TabSheet1
  48.     TabOrder = 2
  49.     TabStop = False
  50.     object TabSheet1: TTabSheet
  51.       Caption = 'Settings'
  52.       object PaintBox1: TPaintBox
  53.         Left = 208
  54.         Top = 8
  55.         Width = 185
  56.         Height = 17
  57.         Hint = 'Rotation Angle'
  58.         OnPaint = PaintBox1Paint
  59.       end
  60.       object PanelBGColor: TPanel
  61.         Left = 208
  62.         Top = 176
  63.         Width = 97
  64.         Height = 21
  65.         Alignment = taLeftJustify
  66.         BevelOuter = bvNone
  67.         Caption = 'Background Color:'
  68.         TabOrder = 7
  69.       end
  70.       object PanelPreview: TPanel
  71.         Left = 8
  72.         Top = 8
  73.         Width = 193
  74.         Height = 193
  75.         BevelOuter = bvNone
  76.         BorderStyle = bsSingle
  77.         Color = clBtnShadow
  78.         TabOrder = 0
  79.         object ImagePreview: TImage
  80.           Left = 0
  81.           Top = 0
  82.           Width = 189
  83.           Height = 189
  84.           Align = alClient
  85.           Center = True
  86.           Stretch = True
  87.         end
  88.       end
  89.       object TrackBar: TTrackBar
  90.         Left = 208
  91.         Top = 32
  92.         Width = 129
  93.         Height = 25
  94.         Max = 360
  95.         Frequency = 30
  96.         TabOrder = 1
  97.         ThumbLength = 14
  98.         OnChange = TrackBarChange
  99.       end
  100.       object RxSpinEdit: TRxSpinEdit
  101.         Left = 344
  102.         Top = 32
  103.         Width = 49
  104.         Height = 21
  105.         ButtonKind = bkStandard
  106.         MaxValue = 360.000000000000000000
  107.         MaxLength = 3
  108.         TabOrder = 2
  109.         OnChange = RxSpinEditChange
  110.       end
  111.       object RadioGroupDegrees: TRadioGroup
  112.         Left = 208
  113.         Top = 64
  114.         Width = 89
  115.         Height = 105
  116.         Caption = ' Degrees '
  117.         Items.Strings = (
  118.           '45'
  119.           '90'
  120.           '180')
  121.         TabOrder = 3
  122.         OnClick = RadioGroupDegreesClick
  123.       end
  124.       object RadioGroupDirection: TRadioGroup
  125.         Left = 304
  126.         Top = 64
  127.         Width = 89
  128.         Height = 105
  129.         Caption = ' Direction '
  130.         ItemIndex = 1
  131.         Items.Strings = (
  132.           'Left'
  133.           'Right')
  134.         TabOrder = 4
  135.         OnClick = RadioGroupDirectionClick
  136.       end
  137.       object EditBGColor: TEdit
  138.         Left = 304
  139.         Top = 176
  140.         Width = 57
  141.         Height = 21
  142.         CharCase = ecUpperCase
  143.         TabOrder = 5
  144.         OnChange = EditBGColorChange
  145.       end
  146.       object ButtonBGColor: TButton
  147.         Left = 368
  148.         Top = 176
  149.         Width = 25
  150.         Height = 21
  151.         Caption = '...'
  152.         TabOrder = 6
  153.         OnClick = ButtonBGColorClick
  154.       end
  155.     end
  156.   end
  157.   object ButtonRefresh: TButton
  158.     Left = 0
  159.     Top = 248
  160.     Width = 81
  161.     Height = 25
  162.     Caption = 'Refresh'
  163.     TabOrder = 3
  164.     Visible = False
  165.     OnClick = ButtonRefreshClick
  166.   end
  167. end
  168.